home *** CD-ROM | disk | FTP | other *** search
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- NNNNAAAAMMMMEEEE
- _X_m_D_i_s_p_l_a_y - The Display widget class
-
- SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
- #include <Xm/Display.h>
-
- DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
- The XmDisplay object is used by the Motif widgets to store
- information that is specific to a display. It also allows
- the toolkit to access certain information on widget
- hierarchies that would otherwise be unavailable. Each
- client has one XmDisplay object for each display it
- accesses.
-
- An XmDisplay object is automatically created when the
- application creates the first shell on a display (usually
- accomplished by a call to _X_t_A_p_p_I_n_i_t_i_a_l_i_z_e or
- _X_t_A_p_p_C_r_e_a_t_e_S_h_e_l_l). It is not necessary to create an
- XmDisplay object by any other means. An application can use
- the function _X_m_G_e_t_X_m_D_i_s_p_l_a_y to obtain the widget ID of the
- XmDisplay object for a given display.
-
- An application cannot supply initial values for XmDisplay
- resources as arguments to a call to any function that
- creates widgets. The application or user can supply initial
- values in a resource file. After creating the first shell
- on the display, the application can use _X_m_G_e_t_X_m_D_i_s_p_l_a_y to
- obtain the widget ID of the XmDisplay object and then call
- _X_t_S_e_t_V_a_l_u_e_s to set the XmDisplay resources.
-
- XmDisplay resources specify the drag protocol style for a
- client participating in drag and drop transactions. There
- are two basic protocol types, preregister and dynamic. When
- a preregister protocol is used, the toolkit handles any
- communication between the initiator and receiver clients,
- and displays the appropriate drag-over and drag-under visual
- effects. A client registers its drop sites in advance and
- this information is stored in a property for each top-level
- window. When the drag pointer enters a top level window,
- the drop site information is read by the initiator. A
- dynamic protocol allows the source and destination clients
- to dynamically communicate drag and drop state information
- between each other, and to update their respective visuals
- accordingly. The toolkit provides drop site information as
- the pointer passes over any given drop site. In this mode,
- a receiver can supply a procedure to generate its own drag-
- under effects.
-
- CCCCllllaaaasssssssseeeessss
- Display inherits behavior and resources from _C_o_r_e,
- _C_o_m_p_o_s_i_t_e, _S_h_e_l_l, _W_M_S_h_e_l_l, _V_e_n_d_o_r_S_h_e_l_l, _T_o_p_L_e_v_e_l_S_h_e_l_l, and
- _A_p_p_l_i_c_a_t_i_o_n_S_h_e_l_l classes.
-
-
-
- Page 1 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- The class pointer is _x_m_D_i_s_p_l_a_y_C_l_a_s_s.
-
- The class name is _X_m_D_i_s_p_l_a_y.
-
- NNNNeeeewwww RRRReeeessssoooouuuurrrrcccceeeessss
- The following table defines a set of widget resources used
- by the programmer to specify data. The programmer can also
- set the resource values for the inherited classes to set
- attributes for this widget. To reference a resource by name
- or by class in an ._X_d_e_f_a_u_l_t_s file, remove the _X_m_N or _X_m_C
- prefix and use the remaining letters. To specify one of the
- defined values for a resource in an ._X_d_e_f_a_u_l_t_s file, remove
- the _X_m prefix and use the remaining letters (in either
- lowercase or uppercase, but include any underscores between
- words). The codes in the access column indicate if the
- given resource can be set at creation time (_C), set by using
- _X_t_S_e_t_V_a_l_u_e_s (_S), retrieved by using _X_t_G_e_t_V_a_l_u_e_s (_G), or is
- not applicable (_N/_A).
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy RRRReeeessssoooouuuurrrrcccceeee SSSSeeeetttt
- NNNNaaaammmmeeee CCCCllllaaaassssssss TTTTyyyyppppeeee DDDDeeeeffffaaaauuuulllltttt AAAAcccccccceeeessssssss
- __________________________________________________________________________________________________________________
- XmNdefaultVirtualBindings DefaultVirtualBindings String dynamic CG
- XmNdragInitiatorProtocolStyle XmCDragInitiatorProtocolStyle unsigned char XmDRAG_PREFER_RECEIVER CG
- XmNdragReceiverProtocolStyle XmCDragReceiverProtocolStyle unsigned char XmDRAG_PREFER_PREREGISTER CG
- defaultButtonEmphasis DefaultButtonEmphasis XtEnum "external_highlight" CG
- enableBtn1Transfer EnableBtn1Transfer Boolean False CG
- enableButtonTab EnableButtonTab Boolean False CG
- enableDragIcon EnableDragIcon Boolean False CG
- enableEtchedInMenu EnableEtchedInMenu Boolean False CG
- enableMultiKeyBindings EnableMultiKeyBindings Boolean False CG
- enableToggleColor EnableToggleColor Boolean False CG
- enableToggleVisual EnableToggleVisual Boolean False CG
- enableUnselectableDrag EnableUnselectableDrag Boolean True CG
-
-
- _X_m_N_d_e_f_a_u_l_t_V_i_r_t_u_a_l_B_i_n_d_i_n_g_s
- Specifies the default virtual bindings for the display.
- Following is an example of a specification for the
- _d_e_f_a_u_l_t_V_i_r_t_u_a_l_B_i_n_d_i_n_g_s resource in a resource file:
- *defaultVirtualBindings: \
- osfBackSpace : <Key>BackSpace\n\
- osfInsert : <Key>InsertChar\n\
- ...
- osfDelete : <Key>DeleteChar
-
- _X_m_N_d_r_a_g_I_n_i_t_i_a_t_o_r_P_r_o_t_o_c_o_l_S_t_y_l_e
- Specifies the drag and drop protocol requirements or
- preference when the client is an initiator. The
- possible values are
-
- _X_m_D_R_A_G__P_R_E_R_E_G_I_S_T_E_R
-
-
-
- Page 2 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- As an initiator, this client does not use the dynamic
- protocol and can only arrange visual effects with
- receivers who provide preregistered information.
-
- _X_m_D_R_A_G__D_Y_N_A_M_I_C
- As an initiator, this client does not make use of any
- preregistered drop site information made available by
- other clients, and can only arrange visual effects with
- receivers who use the dynamic protocol.
-
- _X_m_D_R_A_G__N_O_N_E
- Specifies that drag and drop is disabled for this
- client.
-
- _X_m_D_R_A_G__D_R_O_P__O_N_L_Y
- As an initiator, this client does not use either the
- preregistered drop site information or the dynamic
- protocol. It supports dragging, and any time the
- cursor is over a client that supports drag and drop,
- valid feedback is provided. There are no other visual
- effects.
-
- _X_m_D_R_A_G__P_R_E_F_E_R__D_Y_N_A_M_I_C
- As an initiator, this client can support both the
- preregister and dynamic protocols, but prefers to use
- dynamic protocols whenever possible in order to provide
- high-quality drag-under feedback.
-
- _X_m_D_R_A_G__P_R_E_F_E_R__P_R_E_R_E_G_I_S_T_E_R
- As an initiator, this client can support both the
- preregister and dynamic protocols, but prefers to use
- the preregister protocol whenever possible in order to
- accommodate performance needs or to provide consistent
- drag-over feedback.
-
- _X_m_D_R_A_G__P_R_E_F_E_R__R_E_C_E_I_V_E_R
- Indicates that this client can support both preregister
- and dynamic protocols, but will defer to the preference
- of the receiver client. This value is valid only for
- the _X_m_N_d_r_a_g_I_n_i_t_i_a_t_o_r_P_r_o_t_o_c_o_l_S_t_y_l_e resource, and is its
- default value. Specifies the drag and drop protocol
- requirements or preference when this client is a
- receiver. The values are
-
- _X_m_D_R_A_G__P_R_E_R_E_G_I_S_T_E_R
- As a receiver, this client preregisters drop site
- information and does not use the dynamic protocol. It
- can only arrange visual effects with initiators who
- make use of the preregistered information.
-
- _X_m_D_R_A_G__D_Y_N_A_M_I_C
- As a receiver, this client uses the dynamic protocol
-
-
-
- Page 3 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- and does not preregister drop site information. It can
- only arrange visual effects with initiators who use the
- dynamic protocol.
-
- _X_m_D_R_A_G__N_O_N_E
- Specifies that drag and drop is disabled for this
- client.
-
- _X_m_D_R_A_G__D_R_O_P__O_N_L_Y
- As a receiver, this client neither uses the dynamic
- protocol nor preregisters drop site information. It
- supports dropping, and when dragging over this client,
- valid feedback is always provided, but there are no
- other visual effects.
-
- _X_m_D_R_A_G__P_R_E_F_E_R__D_Y_N_A_M_I_C
- As a receiver, this client can support both the
- preregister and dynamic protocols, but prefers to use
- dynamic protocol whenever possible in order to provide
- high-quality drag-under feedback.
-
- _X_m_D_R_A_G__P_R_E_F_E_R__P_R_E_R_E_G_I_S_T_E_R
- As a receiver, this client can support both the
- preregister and dynamic protocols, but prefers to use
- the preregister protocol whenever possible in order to
- accommodate performance needs.
-
- The actual protocol used between an initiator and a
- receiver is based on the protocol style of the receiver
- and initiator. The decision matrix is as follows:
-
- ____________________________________________________________________________________
- | DDDDrrrraaaagggg IIIInnnniiiittttiiiiaaaattttoooorrrr | DDDDrrrraaaagggg RRRReeeecccceeeeiiiivvvveeeerrrr PPPPrrrroooottttooooccccoooollll SSSSttttyyyylllleeee |
- | PPPPrrrroooottttooooccccoooollll SSSSttttyyyylllleeee _|_______________________________________________________________|
- | | PPPPrrrreeeerrrreeeeggggiiiisssstttteeeerrrr | PPPPrrrreeeeffffeeeerrrr PPPPrrrreeeerrrreeeeggggiiiisssstttteeeerrrr | PPPPrrrreeeeffffeeeerrrr DDDDyyyynnnnaaaammmmiiiicccc | DDDDyyyynnnnaaaammmmiiiicccc |
- _|____________________|______________|_____________________|_________________|___________|
- | PPPPrrrreeeerrrreeeeggggiiiisssstttteeeerrrr | Preregister | Preregister | Preregister | Drop Only |
- _|____________________|______________|_____________________|_________________|___________|
- |PPPPrrrreeeeffffeeeerrrr PPPPrrrreeeerrrreeeeggggiiiisssstttteeeerrrr | Preregister | Preregister | Preregister | Dynamic |
- _|____________________|______________|_____________________|_________________|___________|
- | PPPPrrrreeeeffffeeeerrrr RRRReeeecccceeeeiiiivvvveeeerrrr | Preregister | Preregister | Dynamic | Dynamic |
- _|____________________|______________|_____________________|_________________|___________|
- | PPPPrrrreeeeffffeeeerrrr DDDDyyyynnnnaaaammmmiiiicccc | Preregister | Dynamic | Dynamic | Dynamic |
- _|____________________|______________|_____________________|_________________|___________|
- | DDDDyyyynnnnaaaammmmiiiicccc | Drop Only | Dynamic | Dynamic | Dynamic |
- _|____________________|______________||_____________________||_________________||___________|
-
-
- The value _X_m_D_R_A_G__N_O_N_E does not appear in the above
- matrix. When specified for either the initiator or
- receiver side, _X_m_D_R_A_G__N_O_N_E implies that drag and drop
- transactions are not supported. A value of
-
-
-
- Page 4 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- _X_m_D_R_A_G__D_R_O_P__O_N_L_Y (Drop Only) results when an initiator
- and receiver cannot compromise protocol styles, that
- is, one client requires dynamic mode while the other
- can only support preregister mode, or if either
- explicitly has specified _X_m_D_R_A_G__D_R_O_P__O_N_L_Y.
-
- _d_e_f_a_u_l_t_B_u_t_t_o_n_E_m_p_h_a_s_i_s
- This resource specifies whether to change the look of
- the PushButton widget and gadget that have the
- _X_m_N_s_h_o_w_A_s_D_e_f_a_u_l_t resource set. When the control is the
- default, the PushButton has an etched out button which
- is enclosed with another etched in border. When this
- resource is "internal_highlight", the location cursor
- appears in between the two etched borders to minimize
- the space required. When this resource is
- "external_highlight", the default PushButton draws the
- location cursor outside the second border.
-
- _e_n_a_b_l_e_B_t_n_1_T_r_a_n_s_f_e_r
- When this resource is True, it specifies that the
- actions for selection and transfer are integrated on
- the Button1, and the extend selection actions are
- activated from Button2. This resource impacts the
- actions of the XmText, XmTextField, and XmList widgets.
-
- _e_n_a_b_l_e_B_u_t_t_o_n_T_a_b
- When this resource is True, it specifies whether to
- modify the action for the TAB key (KNextField and
- KPrevField) to move as an arrow key until the boundary
- of a tab group is reached. When at the boundary of the
- tab group, the KNextField and KPrevField actions will
- move to the next or previous tab group, respectively.
- This resource affects the actions of XmPushButtons,
- XmArrowButtons, and XmDrawnButtons.
-
- _e_n_a_b_l_e_D_r_a_g_I_c_o_n
- Specifies which set of icons be used for the system
- default cursors during drag and drop operations. When
- this resource is False, the standard Motif icons are
- used. When this resource is True, an alternate set of
- icons that human interface experts designed are used.
- This resource affects both the 16x16 icons and the
- 32x32 icons that are the system defaults for each of
- the XmScreen objects associated with this display.
-
- _e_n_a_b_l_e_E_t_c_h_e_d_I_n_M_e_n_u
- Specifies the shadowing of the button widgets and
- gadgets in menus when the control is activated. When
- _e_n_a_b_l_e_E_t_c_h_e_d_I_n_M_e_n_u is True, the selected menu control
- is drawn with the shadow etched in; this shadow style
- is consistent with the selected appearance of other
- button widgets outside of menus. When
-
-
-
- Page 5 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- _e_n_a_b_l_e_E_t_c_h_e_d_I_n_M_e_n_u is False, the selected menu control
- is drawn with the shadow etched out. This resource
- impacts the appearance of PushButtons, ToggleButtons,
- and CascadeButtons when they are children of an XmMenu.
-
- _e_n_a_b_l_e_M_u_l_t_i_K_e_y_B_i_n_d_i_n_g_s
- Specifies whether to modify the widget and gadget
- translations to support some MS-Windows common key
- bindings. When this resource is False, the default,
- the translations are not modified. When this resource
- is True, the following XtNbaseTranslations resources
- are merged into the resource database. When an
- application has specified a XtNbaseTranslations
- resource, it will have precedence over these
- definitions.
- *XmArrowButton.baseTranslations: #override
- <Key>F1 : Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- *XmBulletinBoard.baseTranslations: #override
- <Key>F1:ManagerGadgetHelp()
- c<Key>s : ManagerParentCancel()
- <Key>Escape : ManagerParentCancel()
- *XmCascadeButton.baseTranslations: #override
- <Key>F1:Help()
- c<Key>s : CleanupMenuBar()
- <Key>Escape : CleanupMenuBar()
- *XmDragContext.baseTranslations : #override
- <Key>F1:HelpDrag()
- c<Key>s : CancelDrag()
- <Key>Escape : CancelDrag()
- *XmDrawingArea.baseTranslations: #override
- <Key>F1 : DrawingAreaInput() ManagerGadgetHelp()
- c<Key>s : DrawingAreaInput() ManagerParentCancel()
- <Key>Escape : DrawingAreaInput() ManagerParentCancel()
- *XmDrawnButton.baseTranslations: #override
- <Key>F1:Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- *XmFrame.baseTranslations: #override
- c<Key>s : ManagerParentCancel()
- <Key>Escape : ManagerParentCancel()
- *XmLabel.baseTranslations: #override
- <Key>F1:Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- <Btn2Down>:
- *XmList.baseTranslations: #override
- <Key>F1:PrimitiveHelp()
- c<Key>s : ListKbdCancel()
- <Key>Escape : ListKbdCancel()
- *XmManager.baseTranslations: #override
-
-
-
- Page 6 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- <Key>F1:ManagerGadgetHelp()
- c<Key>s : ManagerParentCancel()
- <Key>Escape : ManagerParentCancel()
- *XmPrimitive.baseTranslations: #override
- <Key>F1:PrimitiveHelp()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- *XmPushButton.baseTranslations: #override
- <Key>F1:Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- <Btn2Down>:
- *XmRowColumn.baseTranslations: #override
- <Key>F1:MenuHelp()
- c<Key>s : ManagerParentCancel()
- <Key>Escape : ManagerParentCancel()
- *XmSash.baseTranslations: #override
- <Key>F1:Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
- *XmScrollBar.baseTranslations: #override
- <Key>F1:PrimitiveHelp()
- c<Key>s : CancelDrag()
- <Key>Escape : CancelDrag()
- *XmScrolledWindow.baseTranslations: #override
- <Key>F1:ManagerGadgetHelp()
- c<Key>s : ManagerParentCancel()
- <Key>Escape : ManagerParentCancel()
- *XmTextField.baseTranslations: #override
- <Key>F1: Help()
- c<Key>s : process-cancel()
- <Key>Escape : process-cancel()
- c<Key>x : cut-clipboard()
- c<Key>c : copy-clipboard()
- c<Key>v : paste-clipboard()
- s<Key>Delete : cut-clipboard()
- c<Key>Insert : copy-clipboard()
- s<Key>Insert : paste-clipboard()
- *XmText.baseTranslations: #override
- <Key>F1: Help()
- c<Key>s : process-cancel()
- <Key>Escape : process-cancel()
- c<Key>x : cut-clipboard()
- c<Key>c : copy-clipboard()
- c<Key>v : paste-clipboard()
- s<Key>Delete : cut-clipboard()
- c<Key>Insert : copy-clipboard()
- s<Key>Insert : paste-clipboard()
- *XmToggleButton.baseTranslations: #override
- <Key>F1: Help()
- c<Key>s : PrimitiveParentCancel()
- <Key>Escape : PrimitiveParentCancel()
-
-
-
- Page 7 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- <Btn2Down>:
-
- From the user's perspective, setting the
- _e_n_a_b_l_e_M_u_l_t_i_K_e_y_B_i_n_d_i_n_g_s resource to True has the
- following affect:
-
- +o use of F1 function key for accessing help
-
- +o use both <Ctrl>s and Escape for canceling an operation
-
- +o disable drag from labels in XmLabel, XmPushButton,
- XmToggleButton, and XmScale widgets and gadgets
-
- +o use both <Ctrl>x and <Shift>Delete to cut text
-
- +o use both <Ctrl>c and <Ctrl>Insert to copy text
-
- +o use both <Ctrl>v and <Shift>Insert to paste text
-
- _e_n_a_b_l_e_T_o_g_g_l_e_C_o_l_o_r
- Specifies whether the fill color of the ToggleButton
- widget and gadget uses the background or the highlight
- color. When _e_n_a_b_l_e_T_o_g_g_l_e_C_o_l_o_r is True, the fill color
- uses the highlight color. The highlight color makes it
- more obvious to the end user that the Toggle has been
- set. When _e_n_a_b_l_e_T_o_g_g_l_e_C_o_l_o_r is False, the fill color
- uses the background color. This resource affects the
- appearance of all ToggleButton widgets and gadgets.
-
- _e_n_a_b_l_e_T_o_g_g_l_e_V_i_s_u_a_l
- Specifies the visual appearance of the ToggleButton
- widget and gadgets. When this resource is True, the
- look specified by the ToggleButton's _X_m_N_i_n_d_i_c_a_t_o_r_T_y_p_e
- resource is as follows:
-
- +o _X_m_O_N_E__O_F__M_A_N_Y - a shadowed circle
-
- +o _X_m_N__O_F__M_A_N_Y - a shadowed square with a check mark when
- set
-
- When this resource is False, the look specified by the
- ToggleButton's _X_m_N_i_n_d_i_c_a_t_o_r_T_y_p_e resource is as follows:
-
- +o _X_m_O_N_E__O_F__M_A_N_Y - a shadowed diamond
-
- +o _X_m_N__O_F__M_A_N_Y - a shadowed square
-
- This resource affects the appearance of all
- ToggleButton widgets and gadgets.
-
- _e_n_a_b_l_e_U_n_s_e_l_e_c_t_a_b_l_e_D_r_a_g
- Specifies whether the user can drag text that is not
-
-
-
- Page 8 (printed 11/11/03)
-
-
-
-
-
-
- XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX)))) UUUUNNNNIIIIXXXX SSSSyyyysssstttteeeemmmm VVVV XXXXmmmmDDDDiiiissssppppllllaaaayyyy((((3333XXXX))))
-
-
-
- selectable such as the labels on buttons. The default
- is True so that the use can drag all text. When this
- resource is set to False, the text on Buttons, Labels,
- and Scales cannot be the source of a drag operation.
-
- IIIInnnnhhhheeeerrrriiiitttteeeedddd RRRReeeessssoooouuuurrrrcccceeeessss
- All of the superclass resources inherited by XmDisplay are
- designated N/A (not applicable).
-
- RRRREEEELLLLAAAATTTTEEEEDDDD IIIINNNNFFFFOOOORRRRMMMMAAAATTTTIIIIOOOONNNN
- _A_p_p_l_i_c_a_t_i_o_n_S_h_e_l_l(_3_X), _C_o_m_p_o_s_i_t_e(_3_X), _C_o_r_e(_3_X),
- _T_o_p_L_e_v_e_l_S_h_e_l_l(_3_X), _V_e_n_d_o_r_S_h_e_l_l(_3_X), _W_M_S_h_e_l_l(_3_X),
- _X_m_G_e_t_X_m_D_i_s_p_l_a_y(_3_X), and _X_m_S_c_r_e_e_n(_3_X).
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Page 9 (printed 11/11/03)
-
-
-
-